home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr44 / xlib06p1.zip / XPOINT.H < prev    next >
C/C++ Source or Header  |  1995-03-05  |  1KB  |  44 lines

  1. /*-----------------------------------------------------------------------
  2. ;
  3. ; XPOINT - header file
  4. ;
  5. ;
  6. ;
  7. ; ****** XLIB - Mode X graphics library                ****************
  8. ; ******                                               ****************
  9. ; ****** Written By Themie Gouthas                     ****************
  10. ;
  11. ; egg@dstos3.dsto.gov.au
  12. ; teg@bart.dsto.gov.au
  13. ;
  14. ;  Terminology & notes:
  15. ;         VRAM ==   Video RAM
  16. ;         SRAM ==   System RAM
  17. ;         X coordinates are in pixels unless explicitly stated
  18. ;
  19. ;-----------------------------------------------------------------------*/
  20.  
  21. #ifndef _XPOINT_H_
  22. #define _XPOINT_H_
  23.  
  24. #include "xdefs.h"
  25.  
  26. /* FUNCTIONS =========================================================== */
  27.  
  28.  
  29. void x_put_pix(           /* Draw a pixel on the screen */
  30.   xScreenCoord_t X,
  31.   xScreenCoord_t Y,
  32.   xPageHandle_t Offset,
  33.   xColor_t Color);
  34.  
  35. xColor_t x_get_pix(          /* Read a pixel from the screen */
  36.   xScreenCoord_t X,
  37.   xScreenCoord_t Y,
  38.   xPageHandle_t PageBase);
  39.  
  40.  
  41. #endif
  42.  
  43.  
  44.